home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 2003 September / PC Answers September 2003.iso / Software / freeware / pixeltoolbox / Setup.exe / Main / PixelToolbox.exe / PixelToolbox.dxr / Scripts_7_simple hold script.ls < prev    next >
Encoding:
Text File  |  2002-06-08  |  408 b   |  24 lines

  1. on exitFrame
  2.   go(the frame)
  3. end
  4.  
  5. on keyUp me
  6.   if the controlDown then
  7.     if the key = "q" then
  8.       sendSprite(239, #quitPixelToolbox)
  9.     else
  10.       if the key = "m" then
  11.         appMinimize()
  12.       else
  13.         if the key = "h" then
  14.           launchGuide()
  15.         end if
  16.       end if
  17.     end if
  18.   else
  19.     if the key = numToChar(13) then
  20.       sendSprite(73, #startNewProject)
  21.     end if
  22.   end if
  23. end
  24.